home *** CD-ROM | disk | FTP | other *** search
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- ;;
- ;; Copyright (c) University of Bath, 1993
- ;;
- ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-
- (defmodule null
- (init extras0 gens defs)
- ()
-
- (export <null> null)
-
- (defmethod size ((c <null>)) 0)
-
- (defmethod shallow-copy ((c <null>)) ())
-
- (defmethod initial-state ((c <null>))
- nil)
-
- )
-